home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / role / DebugTool_111.lha / srcMakefile < prev    next >
Makefile  |  1992-10-31  |  350b  |  18 lines

  1. # Makefile for Infocom Debugging Tool 
  2. # (works with Aztec 5.2a)
  3.  
  4. CFLAGS = -DAMIGA -ms -so -wlc
  5.  
  6. OBJS =     alphabet.o check.o decode.o extern.o header.o macros.o main.o \
  7.     object.o recog.o stuffing.o tree.o vars.o vocab.o
  8.  
  9. all: DebugTool
  10.  
  11. DebugTool:    $(OBJS)
  12.     ln -o DebugTool $(OBJS) -lc
  13.  
  14.  
  15. $(OBJS):    frobnitz.h Makefile
  16.  
  17. # (c) 1992 by Paul David Doherty
  18.